/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.text-box{
    width: 100%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.container{
    width: 125%;
    height: 100%;
    margin: 50px auto;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card{
    width: 90%;
    max-width: 480px;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 50px 35px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);

}

.card img{
    width: 140px;
    border-radius: 50%;
}

.card h2{
    font-size: 40px;
    font-weight: 600;
    margin-top: 20px;
}

.card p{
    font-size: 18px;
    margin: 10px auto;
    max-width: 390px;
}

.card .links img{
    width: 30px;
    border-radius: 50%;
    margin: 10px 8px;
    transition: background 0.5s;
}

.card .links img:hover{
    background: #c4c4c4;
}

.btn{
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    background: rgb(170, 170, 170);
    color: #000000;
    padding: 10px 30px;
    border-radius: 30px;
    margin: 30px 0 10px;
    transition: 1s;
}

.btn:hover{
    background-color:rgb(221, 221, 221);
}

.icons .fa{
    color: #35d7ff;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-heart-o{
    color: #f44336;
}

@media (max-width:1600px){
    .card{
        width: 70%;
        max-width: 420px;
        max-height: 430px;
    }
    .card img{
        width: 100px;
    }
    .card h2{
        font-size: 30px;
    }
    .card p{
        font-size: 15px;
    }
    .card .links img{
        width: 23px;
    }
    .btn{
        font-size: 13px;
        padding: 5px 15px;
        margin: 10px auto;
    }
} 
@media screen and (max-width: 1349px) {
    .container{
        width: 100%;
    }
  }
@media (max-width:540px){
    .card{
        width: 80%;
        max-width: 400px;
        max-height: 330px;
    }
    .card img{
        width: 70px;
    }
    .card h2{
        font-size: 20px;
    }
    .card p{
        font-size: 10px;
    }
    .card .links img{
        width: 17px;
    }
    .btn{
        font-size: 10px;
        padding: 5px 10px;
        margin: 6px auto;
    }
    .container{
        margin: 0 10px;
        align-items: center;
        justify-content: center;
    }
} 
